SuspenseSearchScreen

Description

This rule is used to configure the suspense search criteria and suspense results sections in the Suspense Search screen.  Fields from AsSuspense and AsSuspenseField tables can be used as the suspense search criteria, based on specific suspense records in the database. This can be searched in the database.

SuspenseSearchScreen Element/Attribute Table

Element/Tag

Definition

Attribute

Element/Attribute Value and Description

<SuspenseSearchScreen>

The opening and closing tag for the business rule.

 

 

 <FixedFields>

This tag is used to specify the configuration of the static fields (from AsSuspense table) in the SuspenseSeach criteria section.

 

 

     <Fields>

The <Fields> tag is used to specify the configuration of the dynamic fields (from AsSuspenseField table) in the SuspenseSeach Criteria section.

 

 

            <Field>

The opening and closing tag for each field being configured.

 

 

     <Result>

Required Element;
The result section specifies what needs to be displayed as a result of the search. It follows the standard <Table> structure.

 

 

         <Section>

Required, Repeatable element;
Defines a section of the result. Groups of fields constitute a section. Sections are scrollable from a left/right perspective. This element is repeatable and can have more than one <Section> tag.

 

 

               <Field>

Result field description.

 

 

                    <Name>

Name of the result field. The fixed and/or dynamic fields that are to be displayed in the result grid.

 

 

                    <Display>

The display name of the field.  Indicates how the name will display on the field.

 

 

 

XML Example

<SuspenseSearchScreen>

<FixedFields>

<Field>

<Name>SuspenseNumber</Name>

<Display>Suspense Number</Display>

<DataType>Integer</DataType>

</Field>

<Field>

<Name>Amount</Name>

<Display>Amount</Display>

<DataType>Money</DataType>

</Field>

</FixedFields>

<Fields>

<Field>

<Name>UniqueID</Name>

<Display>UniqueID</Display>

<DataType>Text</DataType>

<Hidden>Yes</Hidden>

</Field>

<Field>

<Name>NBCIndicator</Name>

<DataType>Text</DataType>

<Hidden>Yes</Hidden>

</Field>

</Fields>

<Result>

<Section>

<Field>

<Name>SuspenseNumber</Name>

<Display>Number</Display>

<Hidden>Yes</Hidden>

</Field>

<Field>

<Name>Amount</Name>

<Display>Amount</Display>

</Field>

</Section>

<Section>

<Field>

<Name>NBCIndicator</Name>

<Display>NBCIndicator</Display>

</Field>

<Field>

<Name>UniqueID</Name>

<Display>UniqueID</Display>

</Field>

</Section>

</Result>

</SuspenseSearchScreen>

 

Schema Example

<SuspenseSearchScreen>

<FixedFields>

<Field>

<Name></Name>

<Display></Display>

<DataType></DataType>

<Hidden></Hidden>

</Field>

     </FixedFields>

<Fields>

</Fields>

<Result>

<Section>

<Field>

<Name></Name>

<Display></Display>

<Hidden></Hidden>

</Field>

</Section>

</Result>

</SuspenseSearchScreen>